ed5361cbd6e61408e7a3ec42ed47aad766ea2287,Mage.Sets/src/mage/sets/newphyrexia/LeechingBite.java,LeechingBite,LeechingBite,#UUID#,47

Before Change


        effect.setText("Another target creature gets -1/-1 until end of turn");
        effect.setTargetPointer(new SecondTargetPointer());
        this.getSpellAbility().addEffect(effect);
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(new FilterCreaturePermanent("creature (getting the -1/-1 counter)")));
    }

    public LeechingBite(final LeechingBite card) {

After Change


        this.getSpellAbility().addEffect(new LeechingBiteEffect());
        
        FilterCreaturePermanent filter1 = new FilterCreaturePermanent("creature to get +1/+1");
        TargetCreaturePermanent target1 = new TargetCreaturePermanent(filter1);
        target1.setTargetTag(1);
        this.getSpellAbility().addTarget(target1);
        
        FilterCreaturePermanent filter2 = new FilterCreaturePermanent("another creature to get -1/-1");
        filter2.add(new AnotherTargetPredicate(2));